home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Business Master (3rd Edition)
/
The Business Master (3rd Edition).iso
/
files
/
utilreen
/
slaserfn
/
sample.bat
< prev
next >
Wrap
DOS Batch File
|
1993-06-11
|
1KB
|
27 lines
echo off
cls
if "%1"=="" goto bad
echo ┌───────────────────────────────────────────────────────────────────────┐
echo │ Before you can print a sample of your soft fonts you *must* have run │
echo │ option 3 from the installation menu. (This copies and unpacks the │
echo │ soft fonts, and copies & unpacks the utility programs.) If you have │
echo │ already done this you can print a sample sheet by hitting the return │
echo │ key now. This batch file only works for printers attached to a │
echo │ parallel printer port. │
echo │ │
echo │ If you *don't* want to print anything hit the Ctrl-C key now to abort │
echo │ this batch file and return to INSTALL. │
echo └───────────────────────────────────────────────────────────────────────┘
pause
echo Printing a sample of the Super Fonts I package, this will take a moment....
download @sample.lst 1 -dq %1
copy sample.doc %1:
echo Printing a sample of other products from Elfring Soft Fonts, this will take
echo a moment....
download sample.usp 1 -dq %1
copy sample2.doc %1:
goto good
:bad
echo You must pass a parallel printer port to this batch file (sample lpt1:)
:good